Favicon

You are here: Home > API Reference > App Distribution > Store Published Applications > Retrieve published application details

Retrieve published application details

Required Permission: mad.store.publishedApplication.get

Retrieves comprehensive details for a single published application identified by its unique identifier including application metadata, distribution URL slug, build filter configuration, security and access control settings, audience targeting rules, custom branding, terms and conditions, geographic restrictions, visibility settings, and distribution statistics for complete publication lifecycle management and configuration review.

GET
https://api.applivery.io/v1/organizations/{organizationId}/stores/{storeId}/pubApps/{publishedApplicationId}
curl -X GET "https://api.applivery.io/v1/organizations/{organizationId}/stores/{storeId}/pubApps/{publishedApplicationId}" \
  -H "Authorization: Bearer <YOUR_API_KEY>"
const response = await fetch("https://api.applivery.io/v1/organizations/{organizationId}/stores/{storeId}/pubApps/{publishedApplicationId}", {
  method: "GET",
  headers: {
    Authorization: "Bearer <YOUR_API_KEY>",
  },
});

const data = await response.json();
import requests

response = requests.get(
    "https://api.applivery.io/v1/organizations/{organizationId}/stores/{storeId}/pubApps/{publishedApplicationId}",
    headers={"Authorization": "Bearer <YOUR_API_KEY>"},
)

data = response.json()

Request

Send your API key in the request header authorization
Example: Authorization: Bearer <token>

organizationId string
required
Match pattern: ^(([a-fA-F0-9]{24})|([a-zA-Z0-9\\-]{3,}))$
storeId number
required
publishedApplicationId string
required
Unique published application identifier to locate the specific published application record for deletion from the store catalog and distribution system.
Match pattern: ^[a-fA-F0-9]{24}$

Responses

200 Response application/json
status boolean required
data object required
id string required
Unique identifier for published application instance representing specific distribution channel configuration used throughout platform for referencing publication in analytics, access control, and management operations.
Match pattern: ^[a-fA-F0-9]{24}$
store string required
Store catalog identifier linking publication to specific app distribution portal for multi-store organizational separation and branded distribution channel management.
Match pattern: ^[a-fA-F0-9]{24}$
application string required
Source application identifier connecting published distribution entry to originating application for build inheritance, metadata synchronization, and version tracking.
Match pattern: ^[a-fA-F0-9]{24}$
filter object required
Build selection configuration defining automated deployment strategy and version targeting for distribution channel using tags, git references, or explicit build assignments.
type string required
Filter strategy identifier determining build selection mechanism including specific builds, tag-based filtering, git tag matching, git branch tracking, or automatic latest version distribution.
last builds gitBranch gitTag tag
value any required
Filter criterion value used with selection strategy such as tag name, git reference, or build identifier depending on configured filter type for version targeting.
ios any required
Build identifier for explicit platform-specific build assignment or empty string when using automatic selection strategies.
android any required
Build identifier for explicit platform-specific build assignment or empty string when using automatic selection strategies.
macos any required
Build identifier for explicit platform-specific build assignment or empty string when using automatic selection strategies.
windows any required
Build identifier for explicit platform-specific build assignment or empty string when using automatic selection strategies.
build object required
Legacy single-platform build object containing complete metadata for backward compatibility with simple distributions or null when using multi-platform builds array.
iosBuild object required
Complete iOS build object with version metadata, file details, and download information for currently selected iOS distribution or null when no iOS build configured.
androidBuild object required
Complete Android build object with version metadata, file details, and download information for currently selected Android distribution or null when no Android build configured.
macosBuild object required
Complete macOS build object with version metadata, file details, and download information for currently selected macOS distribution or null when no macOS build configured.
windowsBuild object required
Complete Windows build object with version metadata, file details, and download information for currently selected Windows distribution or null when no Windows build configured.
builds array [object] required
Platform-specific build entries array containing build references and metadata for each platform in multi-platform distribution enabling cross-platform version management.
tags array [array] required
Nested tag arrays defining build selection logic where inner arrays represent OR conditions and outer array represents AND conditions for complex tag-based deployment strategies.
applicationInfo object required
Source application metadata snapshot providing identifying information and default branding inherited from originating application for administrative reference.
id string required
Unique identifier for this resource enabling reference and lookup operations across the platform.
Match pattern: ^[a-fA-F0-9]{24}$
slug string required
URL-friendly unique identifier used in public URLs and routing throughout the platform.
≤ 128 characters
name string required
Human-readable display name for identification in administrative interfaces and user-facing displays.
≤ 128 characters
picture any required
Image URL for visual representation including logos, icons, or thumbnails displayed in interfaces.
slug string required
URL-friendly unique identifier enabling direct public access through shareable distribution links and human-readable routing throughout platform.
≤ 128 characters · ≥ 3 characters · Match pattern: ^[a-z0-9][a-z0-9-]+[a-z0-9]$
configuration object optional
Presentation customization settings enabling white-label distribution with custom application information and visual branding for end-user facing interfaces.
application object optional
branding object optional
security string required
Access control level determining authentication requirements for distribution portal including public access, login requirement, or password protection for controlled distribution.
public password logged
tags array required
Categorization labels enabling publication filtering, searching, and organization within store catalog for administrative management and discovery.
groups array [array] required
Nested group name arrays implementing audience-based access control where inner arrays represent OR conditions and outer array represents AND conditions for complex permission rules.
activateUserAudiences any required
Boolean flag enabling user audience-based targeting controlling whether userAudienceMap configuration actively restricts or targets distribution to specific user segments.
userAudienceMap array [object] required
User audience assignment array linking publication to specific audience segments with notification preferences and access rules for targeted distribution management.
id string required
Match pattern: ^[a-fA-F0-9]{24}$
notifyNewBuildsProcessed boolean required
notAllowed boolean optional
userAudience object optional
password any required
Access password required when security level set to password-protected or empty string for public and logged-in access levels.
visibility string required
Publication discoverability status determining whether distribution appears in public store listings or requires direct URL access for hidden channels.
active inactive unlisted
showHistory any required
Boolean flag controlling whether historical build versions displayed to users on distribution page enabling version browsing and rollback access.
showDevInfo any required
Boolean flag determining whether developer information and technical build metadata displayed to end users for transparency and troubleshooting.
distributionUrl string required
Complete public-facing URL where users access published application for installation and updates constructed from store domain and publication slug.
≤ 256 characters
terms object optional
Terms and conditions configuration requiring user acceptance before download including activation status and full legal text for compliance requirements.
active any required
text any required
counts object required
otpUsers number optional
createdBy string required
User object containing identifier and metadata for creator of published application entry for audit trail and administrative tracking.
Match pattern: ^[a-fA-F0-9]{24}$
updatedAt string required
ISO 8601 timestamp indicating last modification of publication record used for tracking configuration changes and synchronization purposes.
{
    "status": true,
    "data": {
        "id": "string",
        "store": "string",
        "application": "string",
        "filter": {
            "type": "last",
            "value": "string",
            "ios": "string",
            "android": "string",
            "macos": "string",
            "windows": "string",
            "build": {
                "id": "string",
                "organizationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string",
                    "createdBy": "string",
                    "branding": {
                        "logo": "string",
                        "picture": "string",
                        "primaryColor": "string"
                    },
                    "store": {
                        "customDomain": "string"
                    },
                    "configuration": {
                        "storageProvider": "string"
                    }
                },
                "status": "pending",
                "tags": [
                    "string"
                ],
                "versionName": "string",
                "application": "string",
                "applicationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string"
                },
                "changelog": "string",
                "file": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "fileSimulator": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "iconFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "info": {
                    "icon": "string",
                    "ios": {
                        "plist": {
                            "CFBundleName": "string",
                            "CFBundleDisplayName": "string",
                            "CFBundleVersion": "string",
                            "CFBundleShortVersionString": "string",
                            "CFBundleIdentifier": "string",
                            "CFBundleSupportedPlatforms": [
                                "string"
                            ],
                            "MinimumOSVersion": "string",
                            "CFBundleIcons": [
                                "string"
                            ],
                            "UIDeviceFamily": [
                                "string"
                            ]
                        },
                        "mobileprovision": {
                            "TeamIdentifier": "string",
                            "ProvisionsAllDevices": true,
                            "ProvisionedDevices": "string",
                            "TeamName": "string",
                            "ExpirationDate": "string",
                            "signingType": "appStore"
                        }
                    },
                    "android": {
                        "versionCode": "string",
                        "versionName": "string",
                        "platformBuildVersionCode": "string",
                        "platformBuildVersionName": "string",
                        "packageName": "string",
                        "minSDKVersion": "string",
                        "targetSdkVersion": "string",
                        "icon": "string",
                        "productName": "string",
                        "managedConfigurations": [
                            {
                                "key": "string",
                                "title": "string",
                                "description": "string",
                                "restrictionType": "NULL",
                                "defaultValue": "string",
                                "entries": [
                                    "string"
                                ],
                                "entryValues": [
                                    "string"
                                ],
                                "minValue": 0,
                                "maxValue": 0,
                                "visible": true
                            }
                        ]
                    },
                    "pkg": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "MinimumOSVersion": "string",
                        "relatedPkgs": [
                            {
                                "distribution": {
                                    "id": "string",
                                    "active": "string",
                                    "auth": "string",
                                    "installKBytes": "string",
                                    "onConclusion": "string",
                                    "onConclusionScript": "string",
                                    "version": "string",
                                    "archiveKBytes": "string",
                                    "packageIdentifier": "string",
                                    "text": "string"
                                },
                                "plistInfo": {
                                    "CFBundleName": "string",
                                    "CFBundleDisplayName": "string",
                                    "CFBundleVersion": "string",
                                    "CFBundleShortVersionString": "string",
                                    "CFBundleIdentifier": "string",
                                    "CFBundleSupportedPlatforms": [
                                        "string"
                                    ],
                                    "MinimumOSVersion": "string"
                                },
                                "iconFile": "string"
                            }
                        ]
                    },
                    "app": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "CFBundlePackageType": "string",
                        "LSMinimumSystemVersion": "string"
                    },
                    "msi": {
                        "productCode": "string",
                        "productVersion": "string",
                        "productName": "string",
                        "manufacturer": "string"
                    },
                    "exe": {
                        "fileSize": "string",
                        "fileVersionNumber": "string",
                        "fileOS": "string",
                        "fileDescription": "string",
                        "fileVersion": "string",
                        "originalFileName": "string",
                        "productName": "string",
                        "productVersion": "string",
                        "companyName": "string"
                    },
                    "msixbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "appxbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "msix": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "appx": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "scripts": {
                        "preInstall": "string",
                        "postInstall": "string"
                    },
                    "package": {
                        "name": "string",
                        "version": "string"
                    }
                },
                "size": 0,
                "processTime": 0,
                "queuedTime": 0,
                "processedVersionName": "string",
                "versionCode": "string",
                "error": "string",
                "errorCode": "string",
                "os": "ios",
                "buildPlatform": "string",
                "deployer": {
                    "name": "string",
                    "info": {
                        "commitMessage": "string",
                        "commit": "string",
                        "branch": "string",
                        "triggerTimestamp": "string",
                        "buildUrl": "string",
                        "ciUrl": "string",
                        "repositoryUrl": "string",
                        "buildNumber": "string",
                        "tag": "string"
                    }
                },
                "notifications": {
                    "notifyCollaborators": true,
                    "notifyEmployees": true,
                    "message": "string",
                    "language": "es",
                    "filter": [
                        [
                            "string"
                        ]
                    ]
                },
                "uploadedBy": {
                    "id": "string",
                    "email": "[email protected]",
                    "firstName": "string",
                    "lastName": "string",
                    "picture": "string"
                },
                "originalExtension": "string",
                "storageProvider": {
                    "id": "string",
                    "name": "string",
                    "region": "string",
                    "config": "string",
                    "provider": "string"
                },
                "processLogs": [
                    {
                        "dateMs": 0,
                        "message": "string"
                    }
                ],
                "files": [
                    {
                        "id": "string",
                        "type": "aab",
                        "description": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "metadata": {}
                    }
                ],
                "originalFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "extraFiles": [
                    {
                        "target": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        }
                    }
                ],
                "metadata": {},
                "buildProcessor": {
                    "provider": "string",
                    "runName": "string",
                    "runId": "string"
                },
                "counts": {
                    "downloads": {},
                    "downloadByDay": {},
                    "downloadsByMonth": {}
                },
                "externalFileUrl": "string",
                "disabled": true,
                "extension": "string",
                "hasEmmJson": true,
                "defaultScripts": {
                    "preInstall": "string",
                    "postInstall": "string",
                    "audit": "string",
                    "enforce": "string",
                    "runner": "string"
                },
                "updatedAt": "string",
                "createdAt": "string"
            },
            "iosBuild": {
                "id": "string",
                "organizationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string",
                    "createdBy": "string",
                    "branding": {
                        "logo": "string",
                        "picture": "string",
                        "primaryColor": "string"
                    },
                    "store": {
                        "customDomain": "string"
                    },
                    "configuration": {
                        "storageProvider": "string"
                    }
                },
                "status": "pending",
                "tags": [
                    "string"
                ],
                "versionName": "string",
                "application": "string",
                "applicationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string"
                },
                "changelog": "string",
                "file": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "fileSimulator": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "iconFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "info": {
                    "icon": "string",
                    "ios": {
                        "plist": {
                            "CFBundleName": "string",
                            "CFBundleDisplayName": "string",
                            "CFBundleVersion": "string",
                            "CFBundleShortVersionString": "string",
                            "CFBundleIdentifier": "string",
                            "CFBundleSupportedPlatforms": [
                                "string"
                            ],
                            "MinimumOSVersion": "string",
                            "CFBundleIcons": [
                                "string"
                            ],
                            "UIDeviceFamily": [
                                "string"
                            ]
                        },
                        "mobileprovision": {
                            "TeamIdentifier": "string",
                            "ProvisionsAllDevices": true,
                            "ProvisionedDevices": "string",
                            "TeamName": "string",
                            "ExpirationDate": "string",
                            "signingType": "appStore"
                        }
                    },
                    "android": {
                        "versionCode": "string",
                        "versionName": "string",
                        "platformBuildVersionCode": "string",
                        "platformBuildVersionName": "string",
                        "packageName": "string",
                        "minSDKVersion": "string",
                        "targetSdkVersion": "string",
                        "icon": "string",
                        "productName": "string",
                        "managedConfigurations": [
                            {
                                "key": "string",
                                "title": "string",
                                "description": "string",
                                "restrictionType": "NULL",
                                "defaultValue": "string",
                                "entries": [
                                    "string"
                                ],
                                "entryValues": [
                                    "string"
                                ],
                                "minValue": 0,
                                "maxValue": 0,
                                "visible": true
                            }
                        ]
                    },
                    "pkg": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "MinimumOSVersion": "string",
                        "relatedPkgs": [
                            {
                                "distribution": {
                                    "id": "string",
                                    "active": "string",
                                    "auth": "string",
                                    "installKBytes": "string",
                                    "onConclusion": "string",
                                    "onConclusionScript": "string",
                                    "version": "string",
                                    "archiveKBytes": "string",
                                    "packageIdentifier": "string",
                                    "text": "string"
                                },
                                "plistInfo": {
                                    "CFBundleName": "string",
                                    "CFBundleDisplayName": "string",
                                    "CFBundleVersion": "string",
                                    "CFBundleShortVersionString": "string",
                                    "CFBundleIdentifier": "string",
                                    "CFBundleSupportedPlatforms": [
                                        "string"
                                    ],
                                    "MinimumOSVersion": "string"
                                },
                                "iconFile": "string"
                            }
                        ]
                    },
                    "app": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "CFBundlePackageType": "string",
                        "LSMinimumSystemVersion": "string"
                    },
                    "msi": {
                        "productCode": "string",
                        "productVersion": "string",
                        "productName": "string",
                        "manufacturer": "string"
                    },
                    "exe": {
                        "fileSize": "string",
                        "fileVersionNumber": "string",
                        "fileOS": "string",
                        "fileDescription": "string",
                        "fileVersion": "string",
                        "originalFileName": "string",
                        "productName": "string",
                        "productVersion": "string",
                        "companyName": "string"
                    },
                    "msixbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "appxbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "msix": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "appx": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "scripts": {
                        "preInstall": "string",
                        "postInstall": "string"
                    },
                    "package": {
                        "name": "string",
                        "version": "string"
                    }
                },
                "size": 0,
                "processTime": 0,
                "queuedTime": 0,
                "processedVersionName": "string",
                "versionCode": "string",
                "error": "string",
                "errorCode": "string",
                "os": "ios",
                "buildPlatform": "string",
                "deployer": {
                    "name": "string",
                    "info": {
                        "commitMessage": "string",
                        "commit": "string",
                        "branch": "string",
                        "triggerTimestamp": "string",
                        "buildUrl": "string",
                        "ciUrl": "string",
                        "repositoryUrl": "string",
                        "buildNumber": "string",
                        "tag": "string"
                    }
                },
                "notifications": {
                    "notifyCollaborators": true,
                    "notifyEmployees": true,
                    "message": "string",
                    "language": "es",
                    "filter": [
                        [
                            "string"
                        ]
                    ]
                },
                "uploadedBy": {
                    "id": "string",
                    "email": "[email protected]",
                    "firstName": "string",
                    "lastName": "string",
                    "picture": "string"
                },
                "originalExtension": "string",
                "storageProvider": {
                    "id": "string",
                    "name": "string",
                    "region": "string",
                    "config": "string",
                    "provider": "string"
                },
                "processLogs": [
                    {
                        "dateMs": 0,
                        "message": "string"
                    }
                ],
                "files": [
                    {
                        "id": "string",
                        "type": "aab",
                        "description": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "metadata": {}
                    }
                ],
                "originalFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "extraFiles": [
                    {
                        "target": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        }
                    }
                ],
                "metadata": {},
                "buildProcessor": {
                    "provider": "string",
                    "runName": "string",
                    "runId": "string"
                },
                "counts": {
                    "downloads": {},
                    "downloadByDay": {},
                    "downloadsByMonth": {}
                },
                "externalFileUrl": "string",
                "disabled": true,
                "extension": "string",
                "hasEmmJson": true,
                "defaultScripts": {
                    "preInstall": "string",
                    "postInstall": "string",
                    "audit": "string",
                    "enforce": "string",
                    "runner": "string"
                },
                "updatedAt": "string",
                "createdAt": "string"
            },
            "androidBuild": {
                "id": "string",
                "organizationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string",
                    "createdBy": "string",
                    "branding": {
                        "logo": "string",
                        "picture": "string",
                        "primaryColor": "string"
                    },
                    "store": {
                        "customDomain": "string"
                    },
                    "configuration": {
                        "storageProvider": "string"
                    }
                },
                "status": "pending",
                "tags": [
                    "string"
                ],
                "versionName": "string",
                "application": "string",
                "applicationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string"
                },
                "changelog": "string",
                "file": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "fileSimulator": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "iconFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "info": {
                    "icon": "string",
                    "ios": {
                        "plist": {
                            "CFBundleName": "string",
                            "CFBundleDisplayName": "string",
                            "CFBundleVersion": "string",
                            "CFBundleShortVersionString": "string",
                            "CFBundleIdentifier": "string",
                            "CFBundleSupportedPlatforms": [
                                "string"
                            ],
                            "MinimumOSVersion": "string",
                            "CFBundleIcons": [
                                "string"
                            ],
                            "UIDeviceFamily": [
                                "string"
                            ]
                        },
                        "mobileprovision": {
                            "TeamIdentifier": "string",
                            "ProvisionsAllDevices": true,
                            "ProvisionedDevices": "string",
                            "TeamName": "string",
                            "ExpirationDate": "string",
                            "signingType": "appStore"
                        }
                    },
                    "android": {
                        "versionCode": "string",
                        "versionName": "string",
                        "platformBuildVersionCode": "string",
                        "platformBuildVersionName": "string",
                        "packageName": "string",
                        "minSDKVersion": "string",
                        "targetSdkVersion": "string",
                        "icon": "string",
                        "productName": "string",
                        "managedConfigurations": [
                            {
                                "key": "string",
                                "title": "string",
                                "description": "string",
                                "restrictionType": "NULL",
                                "defaultValue": "string",
                                "entries": [
                                    "string"
                                ],
                                "entryValues": [
                                    "string"
                                ],
                                "minValue": 0,
                                "maxValue": 0,
                                "visible": true
                            }
                        ]
                    },
                    "pkg": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "MinimumOSVersion": "string",
                        "relatedPkgs": [
                            {
                                "distribution": {
                                    "id": "string",
                                    "active": "string",
                                    "auth": "string",
                                    "installKBytes": "string",
                                    "onConclusion": "string",
                                    "onConclusionScript": "string",
                                    "version": "string",
                                    "archiveKBytes": "string",
                                    "packageIdentifier": "string",
                                    "text": "string"
                                },
                                "plistInfo": {
                                    "CFBundleName": "string",
                                    "CFBundleDisplayName": "string",
                                    "CFBundleVersion": "string",
                                    "CFBundleShortVersionString": "string",
                                    "CFBundleIdentifier": "string",
                                    "CFBundleSupportedPlatforms": [
                                        "string"
                                    ],
                                    "MinimumOSVersion": "string"
                                },
                                "iconFile": "string"
                            }
                        ]
                    },
                    "app": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "CFBundlePackageType": "string",
                        "LSMinimumSystemVersion": "string"
                    },
                    "msi": {
                        "productCode": "string",
                        "productVersion": "string",
                        "productName": "string",
                        "manufacturer": "string"
                    },
                    "exe": {
                        "fileSize": "string",
                        "fileVersionNumber": "string",
                        "fileOS": "string",
                        "fileDescription": "string",
                        "fileVersion": "string",
                        "originalFileName": "string",
                        "productName": "string",
                        "productVersion": "string",
                        "companyName": "string"
                    },
                    "msixbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "appxbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "msix": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "appx": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "scripts": {
                        "preInstall": "string",
                        "postInstall": "string"
                    },
                    "package": {
                        "name": "string",
                        "version": "string"
                    }
                },
                "size": 0,
                "processTime": 0,
                "queuedTime": 0,
                "processedVersionName": "string",
                "versionCode": "string",
                "error": "string",
                "errorCode": "string",
                "os": "ios",
                "buildPlatform": "string",
                "deployer": {
                    "name": "string",
                    "info": {
                        "commitMessage": "string",
                        "commit": "string",
                        "branch": "string",
                        "triggerTimestamp": "string",
                        "buildUrl": "string",
                        "ciUrl": "string",
                        "repositoryUrl": "string",
                        "buildNumber": "string",
                        "tag": "string"
                    }
                },
                "notifications": {
                    "notifyCollaborators": true,
                    "notifyEmployees": true,
                    "message": "string",
                    "language": "es",
                    "filter": [
                        [
                            "string"
                        ]
                    ]
                },
                "uploadedBy": {
                    "id": "string",
                    "email": "[email protected]",
                    "firstName": "string",
                    "lastName": "string",
                    "picture": "string"
                },
                "originalExtension": "string",
                "storageProvider": {
                    "id": "string",
                    "name": "string",
                    "region": "string",
                    "config": "string",
                    "provider": "string"
                },
                "processLogs": [
                    {
                        "dateMs": 0,
                        "message": "string"
                    }
                ],
                "files": [
                    {
                        "id": "string",
                        "type": "aab",
                        "description": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "metadata": {}
                    }
                ],
                "originalFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "extraFiles": [
                    {
                        "target": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        }
                    }
                ],
                "metadata": {},
                "buildProcessor": {
                    "provider": "string",
                    "runName": "string",
                    "runId": "string"
                },
                "counts": {
                    "downloads": {},
                    "downloadByDay": {},
                    "downloadsByMonth": {}
                },
                "externalFileUrl": "string",
                "disabled": true,
                "extension": "string",
                "hasEmmJson": true,
                "defaultScripts": {
                    "preInstall": "string",
                    "postInstall": "string",
                    "audit": "string",
                    "enforce": "string",
                    "runner": "string"
                },
                "updatedAt": "string",
                "createdAt": "string"
            },
            "macosBuild": {
                "id": "string",
                "organizationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string",
                    "createdBy": "string",
                    "branding": {
                        "logo": "string",
                        "picture": "string",
                        "primaryColor": "string"
                    },
                    "store": {
                        "customDomain": "string"
                    },
                    "configuration": {
                        "storageProvider": "string"
                    }
                },
                "status": "pending",
                "tags": [
                    "string"
                ],
                "versionName": "string",
                "application": "string",
                "applicationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string"
                },
                "changelog": "string",
                "file": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "fileSimulator": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "iconFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "info": {
                    "icon": "string",
                    "ios": {
                        "plist": {
                            "CFBundleName": "string",
                            "CFBundleDisplayName": "string",
                            "CFBundleVersion": "string",
                            "CFBundleShortVersionString": "string",
                            "CFBundleIdentifier": "string",
                            "CFBundleSupportedPlatforms": [
                                "string"
                            ],
                            "MinimumOSVersion": "string",
                            "CFBundleIcons": [
                                "string"
                            ],
                            "UIDeviceFamily": [
                                "string"
                            ]
                        },
                        "mobileprovision": {
                            "TeamIdentifier": "string",
                            "ProvisionsAllDevices": true,
                            "ProvisionedDevices": "string",
                            "TeamName": "string",
                            "ExpirationDate": "string",
                            "signingType": "appStore"
                        }
                    },
                    "android": {
                        "versionCode": "string",
                        "versionName": "string",
                        "platformBuildVersionCode": "string",
                        "platformBuildVersionName": "string",
                        "packageName": "string",
                        "minSDKVersion": "string",
                        "targetSdkVersion": "string",
                        "icon": "string",
                        "productName": "string",
                        "managedConfigurations": [
                            {
                                "key": "string",
                                "title": "string",
                                "description": "string",
                                "restrictionType": "NULL",
                                "defaultValue": "string",
                                "entries": [
                                    "string"
                                ],
                                "entryValues": [
                                    "string"
                                ],
                                "minValue": 0,
                                "maxValue": 0,
                                "visible": true
                            }
                        ]
                    },
                    "pkg": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "MinimumOSVersion": "string",
                        "relatedPkgs": [
                            {
                                "distribution": {
                                    "id": "string",
                                    "active": "string",
                                    "auth": "string",
                                    "installKBytes": "string",
                                    "onConclusion": "string",
                                    "onConclusionScript": "string",
                                    "version": "string",
                                    "archiveKBytes": "string",
                                    "packageIdentifier": "string",
                                    "text": "string"
                                },
                                "plistInfo": {
                                    "CFBundleName": "string",
                                    "CFBundleDisplayName": "string",
                                    "CFBundleVersion": "string",
                                    "CFBundleShortVersionString": "string",
                                    "CFBundleIdentifier": "string",
                                    "CFBundleSupportedPlatforms": [
                                        "string"
                                    ],
                                    "MinimumOSVersion": "string"
                                },
                                "iconFile": "string"
                            }
                        ]
                    },
                    "app": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "CFBundlePackageType": "string",
                        "LSMinimumSystemVersion": "string"
                    },
                    "msi": {
                        "productCode": "string",
                        "productVersion": "string",
                        "productName": "string",
                        "manufacturer": "string"
                    },
                    "exe": {
                        "fileSize": "string",
                        "fileVersionNumber": "string",
                        "fileOS": "string",
                        "fileDescription": "string",
                        "fileVersion": "string",
                        "originalFileName": "string",
                        "productName": "string",
                        "productVersion": "string",
                        "companyName": "string"
                    },
                    "msixbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "appxbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "msix": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "appx": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "scripts": {
                        "preInstall": "string",
                        "postInstall": "string"
                    },
                    "package": {
                        "name": "string",
                        "version": "string"
                    }
                },
                "size": 0,
                "processTime": 0,
                "queuedTime": 0,
                "processedVersionName": "string",
                "versionCode": "string",
                "error": "string",
                "errorCode": "string",
                "os": "ios",
                "buildPlatform": "string",
                "deployer": {
                    "name": "string",
                    "info": {
                        "commitMessage": "string",
                        "commit": "string",
                        "branch": "string",
                        "triggerTimestamp": "string",
                        "buildUrl": "string",
                        "ciUrl": "string",
                        "repositoryUrl": "string",
                        "buildNumber": "string",
                        "tag": "string"
                    }
                },
                "notifications": {
                    "notifyCollaborators": true,
                    "notifyEmployees": true,
                    "message": "string",
                    "language": "es",
                    "filter": [
                        [
                            "string"
                        ]
                    ]
                },
                "uploadedBy": {
                    "id": "string",
                    "email": "[email protected]",
                    "firstName": "string",
                    "lastName": "string",
                    "picture": "string"
                },
                "originalExtension": "string",
                "storageProvider": {
                    "id": "string",
                    "name": "string",
                    "region": "string",
                    "config": "string",
                    "provider": "string"
                },
                "processLogs": [
                    {
                        "dateMs": 0,
                        "message": "string"
                    }
                ],
                "files": [
                    {
                        "id": "string",
                        "type": "aab",
                        "description": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "metadata": {}
                    }
                ],
                "originalFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "extraFiles": [
                    {
                        "target": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        }
                    }
                ],
                "metadata": {},
                "buildProcessor": {
                    "provider": "string",
                    "runName": "string",
                    "runId": "string"
                },
                "counts": {
                    "downloads": {},
                    "downloadByDay": {},
                    "downloadsByMonth": {}
                },
                "externalFileUrl": "string",
                "disabled": true,
                "extension": "string",
                "hasEmmJson": true,
                "defaultScripts": {
                    "preInstall": "string",
                    "postInstall": "string",
                    "audit": "string",
                    "enforce": "string",
                    "runner": "string"
                },
                "updatedAt": "string",
                "createdAt": "string"
            },
            "windowsBuild": {
                "id": "string",
                "organizationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string",
                    "createdBy": "string",
                    "branding": {
                        "logo": "string",
                        "picture": "string",
                        "primaryColor": "string"
                    },
                    "store": {
                        "customDomain": "string"
                    },
                    "configuration": {
                        "storageProvider": "string"
                    }
                },
                "status": "pending",
                "tags": [
                    "string"
                ],
                "versionName": "string",
                "application": "string",
                "applicationInfo": {
                    "id": "string",
                    "name": "string",
                    "slug": "string",
                    "picture": "string"
                },
                "changelog": "string",
                "file": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "fileSimulator": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "iconFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "info": {
                    "icon": "string",
                    "ios": {
                        "plist": {
                            "CFBundleName": "string",
                            "CFBundleDisplayName": "string",
                            "CFBundleVersion": "string",
                            "CFBundleShortVersionString": "string",
                            "CFBundleIdentifier": "string",
                            "CFBundleSupportedPlatforms": [
                                "string"
                            ],
                            "MinimumOSVersion": "string",
                            "CFBundleIcons": [
                                "string"
                            ],
                            "UIDeviceFamily": [
                                "string"
                            ]
                        },
                        "mobileprovision": {
                            "TeamIdentifier": "string",
                            "ProvisionsAllDevices": true,
                            "ProvisionedDevices": "string",
                            "TeamName": "string",
                            "ExpirationDate": "string",
                            "signingType": "appStore"
                        }
                    },
                    "android": {
                        "versionCode": "string",
                        "versionName": "string",
                        "platformBuildVersionCode": "string",
                        "platformBuildVersionName": "string",
                        "packageName": "string",
                        "minSDKVersion": "string",
                        "targetSdkVersion": "string",
                        "icon": "string",
                        "productName": "string",
                        "managedConfigurations": [
                            {
                                "key": "string",
                                "title": "string",
                                "description": "string",
                                "restrictionType": "NULL",
                                "defaultValue": "string",
                                "entries": [
                                    "string"
                                ],
                                "entryValues": [
                                    "string"
                                ],
                                "minValue": 0,
                                "maxValue": 0,
                                "visible": true
                            }
                        ]
                    },
                    "pkg": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "MinimumOSVersion": "string",
                        "relatedPkgs": [
                            {
                                "distribution": {
                                    "id": "string",
                                    "active": "string",
                                    "auth": "string",
                                    "installKBytes": "string",
                                    "onConclusion": "string",
                                    "onConclusionScript": "string",
                                    "version": "string",
                                    "archiveKBytes": "string",
                                    "packageIdentifier": "string",
                                    "text": "string"
                                },
                                "plistInfo": {
                                    "CFBundleName": "string",
                                    "CFBundleDisplayName": "string",
                                    "CFBundleVersion": "string",
                                    "CFBundleShortVersionString": "string",
                                    "CFBundleIdentifier": "string",
                                    "CFBundleSupportedPlatforms": [
                                        "string"
                                    ],
                                    "MinimumOSVersion": "string"
                                },
                                "iconFile": "string"
                            }
                        ]
                    },
                    "app": {
                        "CFBundleName": "string",
                        "CFBundleDisplayName": "string",
                        "CFBundleVersion": "string",
                        "CFBundleShortVersionString": "string",
                        "CFBundleIdentifier": "string",
                        "CFBundleSupportedPlatforms": [
                            "string"
                        ],
                        "CFBundlePackageType": "string",
                        "LSMinimumSystemVersion": "string"
                    },
                    "msi": {
                        "productCode": "string",
                        "productVersion": "string",
                        "productName": "string",
                        "manufacturer": "string"
                    },
                    "exe": {
                        "fileSize": "string",
                        "fileVersionNumber": "string",
                        "fileOS": "string",
                        "fileDescription": "string",
                        "fileVersion": "string",
                        "originalFileName": "string",
                        "productName": "string",
                        "productVersion": "string",
                        "companyName": "string"
                    },
                    "msixbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "appxbundle": {
                        "applicationsData": [
                            {
                                "arch": "string",
                                "fileName": "string",
                                "size": "string",
                                "version": "string"
                            }
                        ],
                        "packageName": "string",
                        "version": "string"
                    },
                    "msix": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "appx": {
                        "displayName": "string",
                        "publisherDisplayName": "string",
                        "version": "string",
                        "arch": "string",
                        "name": "string"
                    },
                    "scripts": {
                        "preInstall": "string",
                        "postInstall": "string"
                    },
                    "package": {
                        "name": "string",
                        "version": "string"
                    }
                },
                "size": 0,
                "processTime": 0,
                "queuedTime": 0,
                "processedVersionName": "string",
                "versionCode": "string",
                "error": "string",
                "errorCode": "string",
                "os": "ios",
                "buildPlatform": "string",
                "deployer": {
                    "name": "string",
                    "info": {
                        "commitMessage": "string",
                        "commit": "string",
                        "branch": "string",
                        "triggerTimestamp": "string",
                        "buildUrl": "string",
                        "ciUrl": "string",
                        "repositoryUrl": "string",
                        "buildNumber": "string",
                        "tag": "string"
                    }
                },
                "notifications": {
                    "notifyCollaborators": true,
                    "notifyEmployees": true,
                    "message": "string",
                    "language": "es",
                    "filter": [
                        [
                            "string"
                        ]
                    ]
                },
                "uploadedBy": {
                    "id": "string",
                    "email": "[email protected]",
                    "firstName": "string",
                    "lastName": "string",
                    "picture": "string"
                },
                "originalExtension": "string",
                "storageProvider": {
                    "id": "string",
                    "name": "string",
                    "region": "string",
                    "config": "string",
                    "provider": "string"
                },
                "processLogs": [
                    {
                        "dateMs": 0,
                        "message": "string"
                    }
                ],
                "files": [
                    {
                        "id": "string",
                        "type": "aab",
                        "description": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "metadata": {}
                    }
                ],
                "originalFile": {
                    "originalName": "string",
                    "mimetype": "string",
                    "size": 0,
                    "bucket": "string",
                    "key": "string",
                    "location": "string",
                    "region": "string",
                    "storageProviderId": "string",
                    "checksum": "string",
                    "updatedAt": "string",
                    "createdAt": "string"
                },
                "extraFiles": [
                    {
                        "target": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        }
                    }
                ],
                "metadata": {},
                "buildProcessor": {
                    "provider": "string",
                    "runName": "string",
                    "runId": "string"
                },
                "counts": {
                    "downloads": {},
                    "downloadByDay": {},
                    "downloadsByMonth": {}
                },
                "externalFileUrl": "string",
                "disabled": true,
                "extension": "string",
                "hasEmmJson": true,
                "defaultScripts": {
                    "preInstall": "string",
                    "postInstall": "string",
                    "audit": "string",
                    "enforce": "string",
                    "runner": "string"
                },
                "updatedAt": "string",
                "createdAt": "string"
            },
            "builds": [
                {
                    "buildPlatform": "string",
                    "id": "string",
                    "build": {
                        "id": "string",
                        "organizationInfo": {
                            "id": "string",
                            "name": "string",
                            "slug": "string",
                            "picture": "string",
                            "createdBy": "string",
                            "branding": {
                                "logo": "string",
                                "picture": "string",
                                "primaryColor": "string"
                            },
                            "store": {
                                "customDomain": "string"
                            },
                            "configuration": {
                                "storageProvider": "string"
                            }
                        },
                        "status": "pending",
                        "tags": [
                            "string"
                        ],
                        "versionName": "string",
                        "application": "string",
                        "applicationInfo": {
                            "id": "string",
                            "name": "string",
                            "slug": "string",
                            "picture": "string"
                        },
                        "changelog": "string",
                        "file": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "fileSimulator": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "iconFile": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "info": {
                            "icon": "string",
                            "ios": {
                                "plist": {
                                    "CFBundleName": "string",
                                    "CFBundleDisplayName": "string",
                                    "CFBundleVersion": "string",
                                    "CFBundleShortVersionString": "string",
                                    "CFBundleIdentifier": "string",
                                    "CFBundleSupportedPlatforms": [
                                        "string"
                                    ],
                                    "MinimumOSVersion": "string",
                                    "CFBundleIcons": [
                                        "string"
                                    ],
                                    "UIDeviceFamily": [
                                        "string"
                                    ]
                                },
                                "mobileprovision": {
                                    "TeamIdentifier": "string",
                                    "ProvisionsAllDevices": true,
                                    "ProvisionedDevices": "string",
                                    "TeamName": "string",
                                    "ExpirationDate": "string",
                                    "signingType": "appStore"
                                }
                            },
                            "android": {
                                "versionCode": "string",
                                "versionName": "string",
                                "platformBuildVersionCode": "string",
                                "platformBuildVersionName": "string",
                                "packageName": "string",
                                "minSDKVersion": "string",
                                "targetSdkVersion": "string",
                                "icon": "string",
                                "productName": "string",
                                "managedConfigurations": [
                                    {
                                        "key": "string",
                                        "title": "string",
                                        "description": "string",
                                        "restrictionType": "NULL",
                                        "defaultValue": "string",
                                        "entries": [
                                            "string"
                                        ],
                                        "entryValues": [
                                            "string"
                                        ],
                                        "minValue": 0,
                                        "maxValue": 0,
                                        "visible": true
                                    }
                                ]
                            },
                            "pkg": {
                                "CFBundleName": "string",
                                "CFBundleDisplayName": "string",
                                "CFBundleVersion": "string",
                                "CFBundleShortVersionString": "string",
                                "CFBundleIdentifier": "string",
                                "CFBundleSupportedPlatforms": [
                                    "string"
                                ],
                                "MinimumOSVersion": "string",
                                "relatedPkgs": [
                                    {
                                        "distribution": {
                                            "id": "string",
                                            "active": "string",
                                            "auth": "string",
                                            "installKBytes": "string",
                                            "onConclusion": "string",
                                            "onConclusionScript": "string",
                                            "version": "string",
                                            "archiveKBytes": "string",
                                            "packageIdentifier": "string",
                                            "text": "string"
                                        },
                                        "plistInfo": {
                                            "CFBundleName": "string",
                                            "CFBundleDisplayName": "string",
                                            "CFBundleVersion": "string",
                                            "CFBundleShortVersionString": "string",
                                            "CFBundleIdentifier": "string",
                                            "CFBundleSupportedPlatforms": [
                                                "string"
                                            ],
                                            "MinimumOSVersion": "string"
                                        },
                                        "iconFile": "string"
                                    }
                                ]
                            },
                            "app": {
                                "CFBundleName": "string",
                                "CFBundleDisplayName": "string",
                                "CFBundleVersion": "string",
                                "CFBundleShortVersionString": "string",
                                "CFBundleIdentifier": "string",
                                "CFBundleSupportedPlatforms": [
                                    "string"
                                ],
                                "CFBundlePackageType": "string",
                                "LSMinimumSystemVersion": "string"
                            },
                            "msi": {
                                "productCode": "string",
                                "productVersion": "string",
                                "productName": "string",
                                "manufacturer": "string"
                            },
                            "exe": {
                                "fileSize": "string",
                                "fileVersionNumber": "string",
                                "fileOS": "string",
                                "fileDescription": "string",
                                "fileVersion": "string",
                                "originalFileName": "string",
                                "productName": "string",
                                "productVersion": "string",
                                "companyName": "string"
                            },
                            "msixbundle": {
                                "applicationsData": [
                                    {
                                        "arch": "string",
                                        "fileName": "string",
                                        "size": "string",
                                        "version": "string"
                                    }
                                ],
                                "packageName": "string",
                                "version": "string"
                            },
                            "appxbundle": {
                                "applicationsData": [
                                    {
                                        "arch": "string",
                                        "fileName": "string",
                                        "size": "string",
                                        "version": "string"
                                    }
                                ],
                                "packageName": "string",
                                "version": "string"
                            },
                            "msix": {
                                "displayName": "string",
                                "publisherDisplayName": "string",
                                "version": "string",
                                "arch": "string",
                                "name": "string"
                            },
                            "appx": {
                                "displayName": "string",
                                "publisherDisplayName": "string",
                                "version": "string",
                                "arch": "string",
                                "name": "string"
                            },
                            "scripts": {
                                "preInstall": "string",
                                "postInstall": "string"
                            },
                            "package": {
                                "name": "string",
                                "version": "string"
                            }
                        },
                        "size": 0,
                        "processTime": 0,
                        "queuedTime": 0,
                        "processedVersionName": "string",
                        "versionCode": "string",
                        "error": "string",
                        "errorCode": "string",
                        "os": "ios",
                        "buildPlatform": "string",
                        "deployer": {
                            "name": "string",
                            "info": {
                                "commitMessage": "string",
                                "commit": "string",
                                "branch": "string",
                                "triggerTimestamp": "string",
                                "buildUrl": "string",
                                "ciUrl": "string",
                                "repositoryUrl": "string",
                                "buildNumber": "string",
                                "tag": "string"
                            }
                        },
                        "notifications": {
                            "notifyCollaborators": true,
                            "notifyEmployees": true,
                            "message": "string",
                            "language": "es",
                            "filter": [
                                [
                                    "string"
                                ]
                            ]
                        },
                        "uploadedBy": {
                            "id": "string",
                            "email": "[email protected]",
                            "firstName": "string",
                            "lastName": "string",
                            "picture": "string"
                        },
                        "originalExtension": "string",
                        "storageProvider": {
                            "id": "string",
                            "name": "string",
                            "region": "string",
                            "config": "string",
                            "provider": "string"
                        },
                        "processLogs": [
                            {
                                "dateMs": 0,
                                "message": "string"
                            }
                        ],
                        "files": [
                            {
                                "id": "string",
                                "type": "aab",
                                "description": "string",
                                "file": {
                                    "originalName": "string",
                                    "mimetype": "string",
                                    "size": 0,
                                    "bucket": "string",
                                    "key": "string",
                                    "location": "string",
                                    "region": "string",
                                    "storageProviderId": "string",
                                    "checksum": "string",
                                    "updatedAt": "string",
                                    "createdAt": "string"
                                },
                                "metadata": {}
                            }
                        ],
                        "originalFile": {
                            "originalName": "string",
                            "mimetype": "string",
                            "size": 0,
                            "bucket": "string",
                            "key": "string",
                            "location": "string",
                            "region": "string",
                            "storageProviderId": "string",
                            "checksum": "string",
                            "updatedAt": "string",
                            "createdAt": "string"
                        },
                        "extraFiles": [
                            {
                                "target": "string",
                                "file": {
                                    "originalName": "string",
                                    "mimetype": "string",
                                    "size": 0,
                                    "bucket": "string",
                                    "key": "string",
                                    "location": "string",
                                    "region": "string",
                                    "storageProviderId": "string",
                                    "checksum": "string",
                                    "updatedAt": "string",
                                    "createdAt": "string"
                                }
                            }
                        ],
                        "metadata": {},
                        "buildProcessor": {
                            "provider": "string",
                            "runName": "string",
                            "runId": "string"
                        },
                        "counts": {
                            "downloads": {},
                            "downloadByDay": {},
                            "downloadsByMonth": {}
                        },
                        "externalFileUrl": "string",
                        "disabled": true,
                        "extension": "string",
                        "hasEmmJson": true,
                        "defaultScripts": {
                            "preInstall": "string",
                            "postInstall": "string",
                            "audit": "string",
                            "enforce": "string",
                            "runner": "string"
                        },
                        "updatedAt": "string",
                        "createdAt": "string"
                    }
                }
            ],
            "tags": [
                [
                    "string"
                ]
            ]
        },
        "applicationInfo": {
            "id": "string",
            "slug": "string",
            "name": "string",
            "picture": "string"
        },
        "slug": "string",
        "configuration": {
            "application": {
                "name": "string",
                "description": "string"
            },
            "branding": {
                "logo": "string",
                "primaryColor": "string",
                "buttonColor": "string",
                "useAppIcon": true
            }
        },
        "security": "public",
        "tags": [
            "string"
        ],
        "groups": [
            [
                "string"
            ]
        ],
        "activateUserAudiences": true,
        "userAudienceMap": [
            {
                "id": "string",
                "notifyNewBuildsProcessed": true,
                "notAllowed": true,
                "userAudience": {
                    "id": "string",
                    "name": "string",
                    "description": "string",
                    "organizationId": "string",
                    "applicationId": "string",
                    "application": {
                        "id": "string",
                        "name": "string",
                        "slug": "string",
                        "picture": "string"
                    },
                    "filter": {
                        "groups": [
                            [
                                "string"
                            ]
                        ],
                        "emails": [
                            "[email protected]"
                        ]
                    },
                    "usersScope": "org",
                    "allowedApplicationIds": [
                        "string"
                    ],
                    "allowedApplications": [
                        {
                            "id": "string",
                            "name": "string",
                            "slug": "string",
                            "picture": "string"
                        }
                    ],
                    "counts": {
                        "pubApps": 0,
                        "members": 0,
                        "unmatchedEmails": 0
                    },
                    "updatedAt": "string",
                    "createdAt": "string"
                }
            }
        ],
        "password": "string",
        "visibility": "active",
        "showHistory": true,
        "showDevInfo": true,
        "distributionUrl": "string",
        "terms": {
            "active": true,
            "text": "string"
        },
        "counts": {
            "otpUsers": 0
        },
        "createdBy": "string",
        "updatedAt": "string"
    }
}
401 Response application/json
status boolean optional
false
error object optional
code number optional
4001
message string optional
Unauthorized
{
    "status": false,
    "error": {
        "code": 4002,
        "message": "No auth token"
    }
}
404 Response application/json
status boolean optional
false
error object optional
code number optional
3001
message string optional
Entity not found
{
    "status": false,
    "error": {
        "code": 3001,
        "message": "Entity not found"
    }
}